home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / plotting / tsdraw16 / lpdemo.drw < prev    next >
Text File  |  1991-02-26  |  1KB  |  37 lines

  1. !This file is a demonstration of the graphical prosentation of
  2. !the following linear programming problem
  3. !Load it using command ld demo.drw
  4. !The exclamation marks (!) can be used for commenting
  5.  
  6. !Max 600x1 + 200x2
  7. !subject to
  8. !       x1         <    6
  9. !               x2 <   10
  10. !     10x1 +  20x2 <  160
  11. !    300x1 + 200x2 < 2400
  12. !       x1, x2 > 0
  13.  
  14. nw                 !New, clear and reset
  15.  
  16. ik r               !Ink, red
  17. li 600,200,   0    !Line, Objective function slope
  18. li 600,200, 800
  19. li 600,200,4200    !Line, Optimal value
  20.  
  21. ik y               !Ink, yellow;
  22. li   1, 0,    6    !Line, First constraint
  23. li   0, 1,   10    !Line, Second constraint
  24. li  10, 20, 160    !Line, Third constraint
  25. li 300,200,2400    !Line, Fourth constraint
  26.  
  27. ax                 !Redraw axes (must be pacthed lest fill leaks)
  28. fi 1,1             !Fill the area around 1,1 bordered by yellow
  29. po 6,3             !Point at the optimal solution
  30.  
  31. lb 9, 4, 10x1+20x2<160      !Labels
  32. lb 6.2, 6, x1<6
  33. lb 2, 10.7, x2<10
  34. lb 3, 8, 300x1+200x2<2400
  35.  
  36. !LPDEMO.DRW ready
  37.